home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / educate / 7_dayc3.zip / TUTOR.ZIP / CT7.DAT < prev    next >
Text File  |  1993-01-08  |  16KB  |  412 lines

  1. CLS,1,25,7,0
  2. 18,0,15,0,"DAY 7:  DREW SOFTWARE HARD DISK MENU SYSTEM"
  3. MAIN,NULL
  4. CLS,1,25,3,1
  5. BOX,1,1,25,80,1,14,1
  6. 3,0,7,1, "MAIN ──┬─SUBDIR1──┬─SUBDIR11──FILE.S1──FILE.S3             "
  7. 4,0,7,1, "       │          │                                        "
  8. 5,0,7,1, "       │          └─FILE.S4──FILE.S5──FILE.S6              "
  9. 6,0,7,1, "       ├─SUBDIR2──┬─SUBDIR21──FILE.S6──FILE.S7             "
  10. 7,0,7,1, "       │          └─FILE.S8──FILE.S9                       "
  11. 8,0,7,1, "       ├─SUBDIR3──FILE.S10──FILE.S11──FILE.S12──FILE.S13   "
  12. 9,0,7,1, "       │                                                   "
  13. 10,0,7,1,"       └─SUBDIR4─┬─SUBDIR41──FILE.S14──FILE.S15──FILE.S16  "
  14. 11,0,7,1,"                 └─SUBDIR42─┬─FILE.S17──FILE.S18──FILE.S19 "
  15. 12,0,7,1,"                            │                              "
  16. 13,0,7,1,"                            └─SUBDIR421──FILE.S20──FILE.S21"
  17. 15,0,18,1,"HARD DISK LAYOUTS CAN BE CONFUSING!!!"
  18. 15,60,2,1,""
  19. SPACE,1,2
  20. 15,0,2,1,"HARD DISK LAYOUTS CAN BE CONFUSING!!!"
  21. 17,8,3,1,"Not only that, but it can be bothersome to enter the same commands"
  22. 18,8,3,1,"over and over, especially long ones.  For example, if we wanted to"
  23. 19,8,3,1,"edit the FILE.S21 file, and the EDLIN command was in SUBDIR2,"
  24. 20,8,3,1,"we would have to enter:"
  25. 22,0,7,1,"\SUBDIR2\EDLIN \SUBDIR4\SUBDIR42\SUBDIR421\FILE.S21"
  26. SPACE,1,7
  27. CLS,1,25,3,2
  28. BOX,1,1,25,80,1,14,2
  29. 3,8,0,2,"Drew Software uses a system to enhance computer access by"
  30. 4,8,0,2,"means of a MENU system.  This menu is prepared by means of the"
  31. 5,8,0,2,"BATCH FILE ability of the Disk Operating System.  While the method"
  32. 6,8,0,2,"we use here works only on MS-DOS type computers, the theory and"
  33. 7,8,0,2,"principles should work on any computer that allows the use of an"
  34. 8,8,0,2,"automatic logon sequence and the use of batch files."
  35. SPACE,2,0
  36. 10,8,1,2,"The THEORY involved is this:  BATCH files have two main advantages:"
  37. 11,8,1,2,"  1- They allow things to be done automatically."
  38. 12,8,1,2,"  2- They can have very short file names."
  39. 14,8,1,2,"Because of this, we are going to prepare a TEXT file with a listing"
  40. 15,8,1,2,"of ALL of our computer functions, and matching BATCH FILES to perform"
  41. 16,8,1,2,"all of the options listed in the text file.  For example...."
  42. SPACE,2,1
  43. CLS,1,25,3,0
  44. BOX,1,1,25,80,1,14,0
  45. 3,0,3,0,"DREW SOFTWARE HARD DISK MENU OPTIONS"
  46. 5,0,3,0,"WP  Word Processing  "
  47. 6,0,3,0,"SP  Spreadsheet      "
  48. 7,0,3,0,"DB  Database         "
  49. 8,0,3,0,"X   Exit to THIS menu"
  50. 10,0,3,0,"Please enter your choice."
  51. 12,8,3,0,"C:\>"
  52. 15,8,2,0,"Shown above is a sample menu screen.  When you turn on your computer,"
  53. 16,8,2,0,"the system would search for the AUTOEXEC.BAT file and upon finding"
  54. 17,8,2,0,"it, would perform the steps contained therein and wind up at this"
  55. 18,8,2,0,"menu."
  56. SPACE,0,2
  57. 20,8,4,0,"The nice thing here is that you are STILL IN DOS, even though the"
  58. 21,8,4,0,"menu is showing on the screen!  Stick with us... this gets even"
  59. 22,8,4,0,"more interesting!"
  60. SPACE,0,4
  61. CLS,1,25,3,1
  62. BOX,1,1,25,80,1,14,1
  63. 3,8,2,1,"But how do we do this amazing thing?  The answer is through BATCH"
  64. 4,8,2,1,"file magic.  The execution of a menu is really rather simple once"
  65. 5,8,2,1,"you look at it.  Let's list the menu once again and discuss it:"
  66. SPACE,1,2
  67. 6,0,7,1,"WP  Word Processing  "
  68. 7,0,7,1,"SP  Spreadsheet      "
  69. 8,0,7,1,"DB  Database         "
  70. 9,0,7,1,"X   Exit to THIS menu"
  71. SPACE,1,7
  72. BOX,11,1,25,80,1,14,1
  73. 12,8,3,1,"The first batch file is AUTOEXEC.BAT.  Here's what it does:"
  74. 14,8,7,1,"ECHO OFF"
  75. 15,8,7,1,"CLS"
  76. 16,8,7,1,"PROMPT $P$G"
  77. 17,8,7,1,"PATH C:\;C:\DOS"
  78. 18,8,7,1,"X"
  79. 14,40,3,1,"Turns off screen echo"
  80. 15,40,3,1,"Clears the screen"
  81. 16,40,3,1,"Sets the prompt line"
  82. 17,40,3,1,"Where to look for files"
  83. 18,40,3,1,"Execute another batch file called X" 
  84. SPACE,1,3
  85. 20,0,2,1,"Now you wonder what the X.BAT file does..."
  86. SPACE,1,3
  87. CLS,12,25,3,1
  88. BOX,11,1,25,80,1,14,1
  89. 12,8,3,1,"The X.BAT file is used to return to the main directory from ANYWHERE,"
  90. 13,8,3,1,"and once at the main directory, display the main menu:"
  91. 15,8,7,1,"ECHO OFF"
  92. 16,8,7,1,"CLS"
  93. 17,8,7,1,"CD C:\"
  94. 18,8,7,1,"TYPE MENU"
  95. 15,40,3,1,"Turns off screen echo"
  96. 16,40,3,1,"Clears the screen"
  97. 17,40,3,1,"Returns to main directory"
  98. 18,40,3,1,"Displays a file called MENU"
  99. SPACE,1,7
  100. 20,0,2,1,"Uh oh... now what is MENU?"
  101. SPACE,1,2
  102. CLS,12,25,3,1
  103. BOX,11,1,25,80,1,14,1
  104. 12,8,3,1,"MENU is a simple text file that contains our program listing.  It"
  105. 13,8,3,1,"looks like this:"
  106. 15,0,7,1,"DREW SOFTWARE HARD DISK MENU OPTIONS"
  107. 16,0,7,1,"WP  Word Processing  "
  108. 17,0,7,1,"SP  Spreadsheet      "
  109. 18,0,7,1,"DB  Database         "
  110. 19,0,7,1,"X   Exit to THIS menu"
  111. 21,0,7,1,"Please enter your choice."
  112. SPACE,1,7
  113. CLS,12,25,3,1
  114. BOX,11,1,25,80,1,14,1
  115. 12,8,3,1,"The WP.BAT file, SP.BAT FILE, and DB.BAT files are used to access"
  116. 13,8,3,1,"those particular functions.  The WP.BAT file does this:"
  117. 15,8,7,1,"ECHO OFF"
  118. 16,8,7,1,"CLS"
  119. 17,8,7,1,"CD C:\WORDPROC"
  120. 18,8,7,1,"WORDPROG"
  121. 19,8,7,1,"X"
  122. 15,40,3,1,"Turns off screen echo"
  123. 16,40,3,1,"Clears the screen"
  124. 17,40,3,1,"Switches to the WORDPROC subdirectory"
  125. 18,40,3,1,"Executes the WORDPROG.EXE program"
  126. 19,40,3,1,"Calls on the X.BAT file (go to menu)"
  127. SPACE,1,7
  128. 21,8,7,1,"To make the SP.BAT file or DB.BAT file, only two lines need to be"
  129. 22,8,7,1,"altered..."
  130. SPACE,1,7
  131. 17,8,3,1,"CD C:\SPRDSHET   "
  132. 18,8,3,1,"SPREDPRG    "
  133. 17,40,7,1,"Switches to the SPRDSHET subdirectory"
  134. 18,40,7,1,"Executes the SPREDPRG.COM program"
  135. SPACE,1,7
  136. 21,8,7,1,"And now the database program called from DB.BAT...               "
  137. 22,8,7,1,"          "
  138. SPACE,1,7
  139. 17,8,3,1,"CD C:\DATABASE"
  140. 18,8,3,1,"DATAPROG"
  141. 17,40,7,1,"Switches to the DATABASE subdirectory"
  142. 18,40,7,1,"Executes the DATAPROG.EXE program"
  143. 21,8,7,1,"That seems easy enough, doesn't it?  Nothing but interactive batch"
  144. 22,8,7,1,"files.  Now let's see how they work together."
  145. SPACE,1,7
  146. CLS,1,25,3,2
  147. BOX,1,1,25,80,1,14,2
  148. 3,0,4,2,"████    ███    ███   █████"
  149. 4,0,4,2,"█   █  █   █  █   █    █  "
  150. 5,0,4,2,"████   █   █  █   █    █  "
  151. 6,0,4,2,"█   █  █   █  █   █    █  "
  152. 7,0,4,2,"████    ███    ███     █  "
  153. 9,8,0,2,"We're going to ~pseudo~-boot your computer.  NO... DON'T REALLY BOOT"
  154. 10,8,0,2,"THE SYSTEM!!!  To pseudo-boot it, press the space bar and we'll"
  155. 11,8,0,2,"just pretend you just turned your computer on.  We will interrupt"
  156. 12,8,0,2,"the boot process from time to time and make a comment."
  157. SPACE,2,0
  158. CLS,1,25,3,3
  159. 3,8,0,3,"BOOTING..."
  160. 20,8,1,3,"The computer is now turning on"
  161. SPACE,3,1
  162. 5,8,0,3,"CHECKING MEMORY...."
  163. 20,8,1,3,"Now it's checking its RAM memory to make sure everything is okay."
  164. 21,8,1,3,"Unseen to you, the computer will also execute the CONFIG.SYS program."
  165. SPACE,3,1
  166. 7,8,0,3,"ECHO OFF"
  167. 20,8,1,3,"AUTOEXEC.BAT is now being executed.  You'll normally only see this"
  168. 21,8,1,3,"message a split second, because the following CLS erases it!         "
  169. SPACE,1,3
  170. CLS,1,25,3,3
  171. 3,0,0,3,"DREW SOFTWARE HARD DISK MENU OPTIONS"
  172. 4,0,0,3,"WP  Word Processing  "
  173. 5,0,0,3,"SP  Spreadsheet      "
  174. 6,0,0,3,"DB  Database         "
  175. 7,0,0,3,"DO  DOS commands     "
  176. 8,0,0,3,"X   Exit to THIS menu"
  177. 9,0,0,3,"Please enter your choice."
  178. 11,8,0,3,"C:\>"
  179. 20,8,1,3,"You now have the main menu.  Now let's say we're going to enter the"
  180. 21,8,1,3,"word processing system.  Go ahead and enter the correct command:"
  181. INPUT,2,11,12,EXACT,WP
  182. 14,8,0,3,"ECHO OFF"
  183. CLS,1,25,3,3
  184. BOX,1,1,25,80,1,14,3
  185. BOX,1,1,3,80,1,14,3
  186. 2,0,0,3,"BRAND X WORD PROCESSING SYSTEM"
  187. 4,8,0,3,"L----T----T----T----T----T----T----T----T----T----T----T----T----T----R"
  188. 23,8,0,3,"f1-help  f2-copy  f3-block  f4-save  f5-style  f6-print  f7-exit"
  189. 18,8,1,3,"Very good.  Now enter a couple of lines for the fun of it.  How about:"
  190. 19,8,1,3,"  NOW IS THE TIME FOR COMPUTER USERS"
  191. INPUT,2,6,8,EXACT,NOW IS THE TIME FOR COMPUTER USERS
  192. 20,8,1,3,"  TO BEGIN USING COMPUTERS INTELLIGENTLY."
  193. INPUT,2,7,8,EXACT,TO BEGIN USING COMPUTERS INTELLIGENTLY.
  194. 18,8,1,3,"                                                                      "
  195. 19,8,1,3,"                                              "
  196. 20,8,1,3,"                                              "
  197. 18,8,1,3,"VERY GOOD!  Now, let's save the text by pressing key f4 and ENTER."
  198. 19,8,1,3,"When it asks, give the filename as FILEONE.DOC"
  199. KEY,4,SAVE
  200. INPUT,2,21,8,EXACT,SAVE
  201. 22,8,0,3,"Enter the filename: "
  202. INPUT,2,22,28,EXACT,FILEONE.DOC
  203. 18,8,1,3,"                                                               "
  204. 19,8,1,3,"                                                 "
  205. 21,8,1,3,"                "
  206. 22,8,1,3,"                                     "
  207. 18,8,1,3,"EXCELLENT!  Now let's exit the program by pressing key f7 and ENTER."
  208. KEY,7,EXIT
  209. INPUT,2,20,40,EXACT,EXIT
  210. 20,0,0,3,"ABOUT TO EXIT.  PRESS SPACE TO CONTINUE."
  211. CLS,1,25,3,3
  212. 3,0,0,3,"DREW SOFTWARE HARD DISK MENU OPTIONS"
  213. 4,0,0,3,"WP  Word Processing  "
  214. 5,0,0,3,"SP  Spreadsheet      "
  215. 6,0,0,3,"DB  Database         "
  216. 7,0,0,3,"DO  DOS commands     "
  217. 8,0,0,3,"X   Exit to THIS menu"
  218. 9,0,0,3,"Please enter your choice."
  219. 11,8,0,3,"C:\>"
  220. 15,8,1,3,"There, see how it works?  It returns right to the main subdirectory"
  221. 16,8,1,3,"again!  Now you can see how handy it is to have a menu system!!!!"
  222. SPACE,3,1
  223. CLS,1,25,3,4
  224. BOX,1,1,25,80,1,14,4
  225. 3,0,3,4,"█████  █   █  █████  █████  █  █████        █  █████   █  █  █"
  226. 4,0,3,4,"  █    █   █  █   █    █    ▐  █            █    █     █  █  █"
  227. 5,0,3,4,"  █    █████  █████    █       █████        █    █     █  █  █"
  228. 6,0,3,4,"  █    █   █  █   █    █           █        █    █            "
  229. 7,0,3,4,"  █    █   █  █   █    █       █████        █    █     █  █  █"
  230. 9,8,0,4,"CONGRATULATIONS!  You have just completed the Drew Software"
  231. 10,8,0,4,"Introduction to Computers course.  Before we let you go, however,"
  232. 11,8,0,4,"let's go over the information we have covered."
  233. SPACE,4,0
  234. 13,8,0,4,"We're going to ask you a bunch of questions about computers.  Let's"
  235. 14,8,0,4,"see how many you can get right."
  236. SPACE,4,0
  237. 16,8,0,4,"Don't expect to get all of them, or even most of them.  You are new"
  238. 17,8,0,4,"to this.  The key to really learning all of this is to use this"
  239. 18,8,0,4,"information on a DAILY basis.  Practice using these commands.  Go"
  240. 19,8,0,4,"back over your notes and review the things you have written.  Soon,"
  241. 20,8,0,4,"you will be a proficient computer user!"
  242. SPACE,4,0
  243. CLS,1,25,3,0
  244. BOX,1,1,25,80,1,14,0
  245. 2,0,4,0,"DREW SOFTWARE REVIEW SECTION"
  246. 5,8,3,0,"1. What does D.O.S. stand for?"
  247. INPUT,2,5,40,ANY
  248. 6,0,2,0,"Disk Operating System"
  249. SPACE,4,0
  250. 8,8,3,0,"2. What does C.P.U. stand for?"
  251. INPUT,2,8,40,ANY
  252. 9,0,2,0,"Central Processing Unit"
  253. SPACE,0,4
  254. 11,8,3,0,"3. The chip that forms the brains of the computer is a CPU.  It is"
  255. 12,8,3,0,"   also called a M............."
  256. INPUT,2,12,45,ANY
  257. 13,0,2,0,"MICROPROCESSOR"
  258. SPACE,4,0
  259. 15,8,3,0,"4. Your computer's TEMPORARY memory is called (ROM,RAM)"
  260. INPUT,2,15,65,ANY
  261. 16,0,2,0,"RAM-- RANDOM ACCESS MEMORY"
  262. SPACE,0,4
  263. 18,8,3,0,"5. A character in your computer is also called a ...."
  264. INPUT,2,18,65,ANY
  265. 19,0,2,0,"BYTE"
  266. SPACE,4,0
  267. 21,8,3,0,"6. How many characters are in one K ?"
  268. INPUT,2,21,65,ANY
  269. 22,0,2,0,"1,024"
  270. SPACE,0,4
  271. CLS,1,25,3,0
  272. BOX,1,1,25,80,1,14,0
  273. 2,0,4,0,"DREW SOFTWARE REVIEW SECTION"
  274. 4,8,3,0,"7. A term which means to TURN THE COMPUTER ON or RESTART is: "
  275. INPUT,2,4,70,ANY
  276. 5,0,2,0,"BOOT"
  277. SPACE,4,0
  278. 7,8,3,0,"8. A device that allows your computer to communicate over telephone"
  279. 8,8,3,0,"   lines is called a..."
  280. INPUT,2,8,35,ANY
  281. 9,0,2,0,"MODEM"
  282. SPACE,0,4
  283. 11,8,3,0,"9. Another name for computer PROGRAMS is..."
  284. INPUT,2,11,55,ANY
  285. 12,0,2,0,"SOFTWARE"
  286. SPACE,4,0
  287. 14,8,3,0,"10. A filename may be up to how many characters long? "
  288. INPUT,2,14,65,ANY
  289. 15,0,2,0,"8"
  290. SPACE,0,4
  291. 17,8,3,0,"11. Extensions to a filename may be how many characters long?"
  292. INPUT,2,17,70,ANY
  293. 18,0,2,0,"3"
  294. SPACE,4,0
  295. 20,8,3,0,"12. Program instructions or manuals are usually followed with an"
  296. 22,8,3,0,"    extension of ....."
  297. INPUT,2,22,35,ANY
  298. 23,0,2,0,".DOC"
  299. SPACE,0,4
  300. CLS,1,25,3,0
  301. BOX,1,1,25,80,1,14,0
  302. 2,0,4,0,"DREW SOFTWARE REVIEW SECTION"
  303. 4,8,3,0,"13. Name the 3 extensions that can be executed directly from DOS:"
  304. INPUT,2,5,8,ANY
  305. 5,0,2,0,".BAT  .COM  and  .EXE"
  306. SPACE,4,0
  307. 7,8,3,0,"14. A name your hard disk uses to store similar files,"
  308. 8,8,3,0,"    programs and data is called a ...."
  309. INPUT,2,8,50,ANY
  310. 9,0,2,0,"DIRECTORY or SUBDIRECTORY"
  311. SPACE,0,4
  312. 11,8,3,0,"15. The command used to clear the screen is..."
  313. INPUT,2,11,60,ANY
  314. 12,0,2,0,"CLS"
  315. SPACE,4,0
  316. 14,8,3,0,"16. To see a 'catalog' of FILENAMES  you would use..."
  317. INPUT,2,14,65,ANY
  318. 15,0,2,0,"DIR"
  319. SPACE,0,4
  320. 17,8,3,0,"17. * and ? are called...."
  321. INPUT,2,17,40,ANY
  322. 18,0,2,0,"WILDCARDS"
  323. SPACE,4,0
  324. 20,8,3,0,"18. To create a file from your keyboard, you would use the command:"
  325. INPUT,2,21,8,ANY
  326. 21,0,2,0,"COPY CON:FILENAME or EDLIN"
  327. SPACE,0,4
  328. CLS,1,25,3,0
  329. BOX,1,1,25,80,1,14,0
  330. 2,0,4,0,"DREW SOFTWARE REVIEW SECTION"
  331. 4,8,3,0,"19. Types file contents onto the video monitor:"
  332. INPUT,2,4,57,ANY
  333. 5,0,2,0,"TYPE"
  334. SPACE,4,0
  335. 7,8,3,0,"20. Renames a file:"
  336. INPUT,2,7,50,ANY
  337. 8,0,2,0,"REN"
  338. SPACE,0,4
  339. 10,8,3,0,"21. Deletes a file from the disk:"
  340. INPUT,2,10,50,ANY
  341. 11,0,2,0,"DEL"
  342. SPACE,4,0
  343. 13,8,3,0,"22. Types file contents on your printer:"
  344. INPUT,2,13,50,ANY
  345. 14,0,2,0,"TYPE FILENAME>PRN  or   COPY FILENAME PRN"
  346. SPACE,0,4
  347. 16,8,3,0,"23. Prepares a floppy diskette for use:"
  348. INPUT,2,16,50,ANY
  349. 17,0,2,0,"FORMAT"
  350. SPACE,4,0
  351. 19,8,3,0,"24. Creates a BOOTABLE floppy diskette:"
  352. INPUT,2,19,65,ANY
  353. 20,0,2,0,"FORMAT A:/S"
  354. SPACE,0,4
  355. CLS,1,25,3,0
  356. BOX,1,1,25,80,1,14,0
  357. 2,0,4,0,"DREW SOFTWARE REVIEW SECTION"
  358. 4,8,3,0,"25. Makes an exact copy of a diskette:"
  359. INPUT,2,4,55,ANY
  360. 5,0,2,0,"DISKCOPY"
  361. SPACE,4,0
  362. 7,8,3,0,"26. Makes a new directory on a hard disk:"
  363. INPUT,2,7,65,ANY
  364. 8,0,2,0,"MD"
  365. SPACE,0,4
  366. 10,8,3,0,"27. Changes from one directory to another:"
  367. INPUT,2,10,65,ANY
  368. 11,0,2,0,"CD"
  369. SPACE,4,0
  370. 13,8,3,0,"28. Tells the computer where to look for files:"
  371. INPUT,2,13,65,ANY
  372. 14,0,2,0,"PATH"
  373. SPACE,0,4
  374. 16,8,3,0,"29. Displays of map of directories:"
  375. INPUT,2,16,65,ANY
  376. 17,0,2,0,"TREE"
  377. SPACE,4,0
  378. 19,8,3,0,"30. Checks your hard disk to see if it's in good shape."
  379. INPUT,2,19,65,ANY
  380. 20,0,2,0,"CHKDSK/F"
  381. SPACE,0,4
  382. CLS,1,25,3,0
  383. BOX,1,1,25,80,1,14,0
  384. 2,0,4,0,"DREW SOFTWARE REVIEW SECTION"
  385. 4,8,3,0,"31. The name of the DOS line editor is:"
  386. INPUT,2,4,50,ANY
  387. 5,0,2,0,"EDLIN (its actual filename is:  EDLIN.COM)"
  388. SPACE,4,0
  389. 7,8,3,0,"32. The name of the file that causes the computer to perform steps"
  390. 8,8,3,0,"    AUTOMATICALLY at startup:"
  391. INPUT,2,8,50,ANY
  392. 9,0,2,0,"AUTOEXEC.BAT"
  393. SPACE,0,4
  394. 11,8,3,0,"33. The file that tells the computer about unusual equipment and"
  395. 12,8,3,0,"    software configurations:"
  396. INPUT,2,12,40,ANY
  397. 13,0,2,0,"CONFIG.SYS"
  398. SPACE,4,0
  399. CLS,1,25,3,0
  400. BOX,1,1,25,80,1,14,0
  401. 3,0,4,0,"█████  █   █  █████  █   █  █   █      █   █  █████  █   █"
  402. 4,0,4,0,"  █    █   █  █   █  ██  █  █  █       █   █  █   █  █   █"
  403. 5,0,4,0,"  █    █████  █████  █ █ █  ███        █████  █   █  █   █"
  404. 6,0,4,0,"  █    █   █  █   █  █  ██  █  █         █    █   █  █   █"
  405. 7,0,4,0,"  █    █   █  █   █  █   █  █   █        █    █████  █████"
  406. 9,0,3,0,"For taking the Drew Software Instruction Course."
  407. 12,8,2,0,"If you have any questions, please speak with your consultant."
  408. 13,8,2,0,"And please, when purchasing a computer, remember that a computer"
  409. 14,8,2,0,"consultant can save you hours of time, reduce your headaches, and"
  410. 15,8,2,0,"most likely save you money in the process."
  411. SPACE,0,2
  412.